home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ansi / swears10.zip / DEMO2.C < prev    next >
C/C++ Source or Header  |  1991-06-25  |  259b  |  18 lines

  1. #include <stdio.h>
  2. #include "swears.h"
  3.  
  4. void main()
  5. {
  6.     initscr();
  7.     getch();
  8.     clear();
  9.     getch();
  10.     move(5,5);
  11.     getch();
  12.     addstr("A little diddie that I wrote in Ohio...");
  13.     getch();
  14.     refresh();
  15.     getch();
  16.     endwin();
  17. }
  18.